home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / C / ASAP / areainfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-09-08  |  1.1 KB  |  31 lines

  1. /*****************************************************************************
  2.  *                                                                           *
  3.  * ASAP - Amiga Software Authoring Platform                                  *
  4.  *                                                                           *
  5.  * Written by Laurie Perrin                                                  *
  6.  *                                                                           *
  7.  * AAreaInfo wrapper class                                                   *
  8.  *                                                                           *
  9.  *****************************************************************************/
  10.  
  11. #ifndef ASAP_AreaInfo_H
  12. #define ASAP_AreaInfo_H
  13.  
  14. extern "C"
  15. {
  16.  #include <Proto/Graphics.h>
  17. }
  18.  
  19. class AAreaInfo : public AreaInfo
  20. {
  21.  public:
  22.  inline void InitArea(APTR vectorBuffer, long maxVectors);
  23. };
  24. //----------------------------------------------------------------------------
  25. void AAreaInfo::InitArea (APTR vectorBuffer, long maxVectors)
  26. {
  27.  ::InitArea(this, vectorBuffer, maxVectors);
  28. }
  29.  
  30. #endif
  31.